翻訳と辞書
Words near each other
・ Namdroling Monastery
・ Namdu
・ Namdu, Ghana
・ Namdun
・ Name
・ Name & Number
・ Name (disambiguation)
・ NAME (dispersion model)
・ Name (song)
・ Name A Game
・ Name All the Animals
・ Name and Number
・ Name and shame
・ Name and Title Authority File of Catalonia
・ Name Authority File
Name binding
・ Name calling
・ Name change
・ Name changes due to the Islamic State of Iraq and the Levant
・ Name collision
・ Name conflict
・ Name conflicts with minor planets
・ Name day
・ Name days in Bulgaria
・ Name days in Croatia
・ Name days in France
・ Name days in Greece
・ Name days in Hungary
・ Name days in Poland
・ Name days in Slovakia


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Name binding : ウィキペディア英語版
Name binding

In programming languages, name binding is the association of entities (data and/or code) with identifiers. An identifier bound to an object is said to reference that object. Machine languages have no built-in notion of identifiers, but name-object bindings as a service and notation for the programmer is implemented by programming languages. Binding is intimately connected with scoping, as scope determines which names bind to which objects – at which locations in the program code (lexically) and in which one of the possible execution paths (temporally).
Use of an identifier id in a context that establishes a binding for id is called a binding (or
defining) occurrence. In all other occurrences (e.g., in expressions, assignments, and subprogram calls), an identifier stands for what it is bound to; such occurrences are called applied occurrences.
==Binding time==
The binding of names before the program is run is called static (also "early"); bindings performed as the program runs are dynamic (also "late" or "virtual").
An example of a static binding is a direct C function call: the function referenced by the identifier cannot change at runtime.
But an example of dynamic binding is dynamic dispatch, as in a C++ virtual method call. Since the specific type of a polymorphic object is not known before runtime (in general), the executed function is dynamically bound. Take, for example, the following Java code:

public void foo(java.util.List list)

List is an interface, so list must refer to a subtype of it. Is it a reference to a LinkedList, an ArrayList, or some other subtype of List? The actual method referenced by add is not known until runtime. In a language like C, the actual function ''is'' known.

抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Name binding」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.